home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_07
/
1007089a
< prev
next >
Wrap
Text File
|
1992-05-03
|
445b
|
24 lines
main()
{
int c;
while (c = nextsp())
putchar(c);
while (c = nextap())
putchar(c);
}
nextsp()
{
static char *p = "This string will be shown from the beginning to the end";
return *p++;
}
nextap()
{
char *p = "This string will never be shown";
return *p++;
}